hextastudio/ui needs your support to stay running 🫶 Help us
File Upload
File upload allows users to upload files.
Preview
Drop or Click Upload Images
Installation
tsx
export const Home = () => {
const handleFileChange = (e: { target: { files: any } }) => {
console.log(e.target.files);
};
return (
<>
<FileUpload onChange={handleFileChange} multiple accept="image/*">
Drop or Click Upload Images
Props Information
Prop Name
Prop Type
Default Value
Description
Prop Name | Prop Type | Default Value | Description |
---|